hash/maphash.Hash.buf (field)

11 uses

	hash/maphash (current package)
		maphash.go#L106: 	buf   [bufSize]byte // unflushed byte buffer
		maphash.go#L132: 	if h.n == len(h.buf) {
		maphash.go#L135: 	h.buf[h.n] = b
		maphash.go#L148: 		k := copy(h.buf[h.n:], b)
		maphash.go#L167: 	copy(h.buf[:], b)
		maphash.go#L178: 		k := copy(h.buf[h.n:], s)
		maphash.go#L193: 	copy(h.buf[:], s)
		maphash.go#L228: 	if h.n != len(h.buf) {
		maphash.go#L232: 	h.state.s = rthash(h.buf[:h.n], h.state.s)
		maphash.go#L245: 	return rthash(h.buf[:h.n], h.state.s)
		maphash.go#L282: func (h *Hash) BlockSize() int { return len(h.buf) }